home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-02 / demosz.zip / C.DOC < prev    next >
Text File  |  1993-01-13  |  1KB  |  21 lines

  1.                          Turbo Pascal vs. "C"
  2.                          ********************
  3.                               The IBM PC
  4.  
  5. Turbo Pascal is more productive for IBM PC's than "C" or "C++".  It
  6. is written specifically for the PC, where "C/C++" must be compatible
  7. across hardware.  Quicker software development results from:
  8.  
  9.     [X] Strong type checking, to immediately pinpoint errors
  10.     [X] Compile times that are faster by an order of magnitude
  11.     [X] A language that is far easier to learn
  12.     [X] Programs that are nearly self documenting
  13.  
  14. About the only things you would not use it for are operating systems
  15. and device drivers -- less than 1% of standard programming tasks.
  16.  
  17. Few programmers use only a single language, any more than most
  18. computers run only one program.  New programmers find it easier to
  19. start with Turbo Pascal, before learning other languages, rather than
  20. break their teeth on "C" first.  And, unless there is significant
  21. reason to use another language, Turbo Pascal is by far a favorite.